home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / tasksel / tests / preferred-desktop < prev   
Text File  |  2008-10-10  |  419b  |  19 lines

  1. #!/bin/sh
  2. # Choose which desktop environment should be installed to enhance the desktop
  3. # task. tasksel/desktop can be preseeded to select which to install.
  4. set -e
  5.  
  6. # Avoid starting debconf if not being used to test which enhancing task to
  7. # install.
  8. if [ ! "$TESTING_ENHANCER" ]; then
  9.     exit 1
  10. fi
  11.  
  12. . /usr/share/debconf/confmodule
  13.  
  14. if db_get "tasksel/desktop" && echo "$RET" | grep -q "$2"; then
  15.     exit 0
  16. else
  17.     exit 1
  18. fi
  19.